home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / p / pov / povlisti.ngs / cup.pov < prev    next >
Encoding:
Text File  |  1992-10-01  |  1.0 KB  |  66 lines

  1. //------ Tea Cup with Fork ...9/29/92 M.Miller
  2.  
  3. #include "colors.inc"
  4. #include "shapes.inc"
  5. #include "world7.inc"
  6. #include "cup.inc"
  7. #include "tile.inc"
  8. #include "fork.inc"
  9.  
  10. camera {
  11.    location <0 240 -500>
  12.    direction <0 0 4>
  13.    up  <0 1 0>
  14.    right <1.3 0 0>
  15.    look_at <0 30 0>
  16. }
  17.  
  18.  
  19. object { light_source { <400 270 -660 > color White }}
  20. object { light_source { <-400 1270 -1660 > color Gold }}
  21.  
  22. //---- Players
  23. composite { Cup rotate <0 -40 0> translate <0 2 0> }
  24. object { Fork rotate <0 0 7.5> scale <2.8 2.8 2.8> rotate <0 -130 0> translate <-55 2 -10> }
  25. object { World7 scale <1 1 1> }
  26.  
  27. //--- Grout
  28. object {
  29.    plane { <0 1 0> 0 }
  30.     texture { 
  31.     color White
  32.     ambient .2
  33.     }
  34. }
  35.  
  36. //----Ceiling
  37. object {
  38.    plane { <0 1 0> 3000 }
  39.     texture { 
  40.     color White
  41.     ambient .2
  42.     }
  43. }
  44.  
  45. //----Reflection Wall
  46. object {
  47.    plane { <0 0 1> -4000 }
  48.     texture { 
  49.     color Copper
  50.     ambient .2
  51.     }
  52. }
  53.  
  54. //----Reflection Wall
  55. object {
  56.    plane { <1 0 0> 4000 }
  57.     texture { 
  58.     color Blue
  59.     ambient .2
  60.     }
  61. }
  62.  
  63.     
  64.  
  65.  
  66. ə